Package-level declarations

Types

Link copied to clipboard
open class JSONBaseListener
This class provides an empty implementation of JSONListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
Link copied to clipboard
open class JSONBaseVisitor<T> : AbstractParseTreeVisitor<T>
This class provides an empty implementation of JSONVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.
Link copied to clipboard
open class JSONLexer : Lexer
Link copied to clipboard
interface JSONListener : ParseTreeListener
This interface defines a complete listener for a parse tree produced by JSONParser.
Link copied to clipboard
open class JSONParser : Parser
Link copied to clipboard
interface JSONVisitor<T> : ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced by JSONParser.